Spread Windows Forms 6.0 Product Documentation
ComplexBorderSide Constructor(Color,Int32,DashStyle,Single[],Single[])
See Also  Example Support Options
FarPoint.Win Assembly > FarPoint.Win Namespace > ComplexBorderSide Class > ComplexBorderSide Constructor : ComplexBorderSide Constructor(Color,Int32,DashStyle,Single[],Single[])


color
Color for this side of the border
width
Width of this side of the border, in pixels
dashStyle
Style of dashed line for this side of the border; a setting of the DashStyle enumeration of the Microsoft .NET Framework
dashPattern
Pattern of dashes for this side of the border
compoundArray
Array of values that specify a compound line made up of parallel lines and spaces

Glossary Item Box

Creates one side of a four-sided, complex border with the specified color, width, dash style, dash pattern, and compound array.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal color As Color, _
   ByVal width As Integer, _
   ByVal dashStyle As DashStyle, _
   ByVal dashPattern() As Single, _
   ByVal compoundArray() As Single _
)
Visual Basic (Usage)Copy Code
Dim color As Color
Dim width As Integer
Dim dashStyle As DashStyle
Dim dashPattern() As Single
Dim compoundArray() As Single
 
Dim instance As New ComplexBorderSide(color, width, dashStyle, dashPattern, compoundArray)
C# 
public ComplexBorderSide( 
   Color color,
   int width,
   DashStyle dashStyle,
   float[] dashPattern,
   float[] compoundArray
)

Parameters

color
Color for this side of the border
width
Width of this side of the border, in pixels
dashStyle
Style of dashed line for this side of the border; a setting of the DashStyle enumeration of the Microsoft .NET Framework
dashPattern
Pattern of dashes for this side of the border
compoundArray
Array of values that specify a compound line made up of parallel lines and spaces

Remarks

A complex border can have multiple lines. This is done by drawing a compound line with a pen that has the pattern defined in the compoundArray. The array of values specifies the starting point, the start of each line and the start of each spacing as a percentage of the total width of the pen.

The elements in the compound array must be in increasing order between 0 and 1.

For examples that show a complex border, refer to Creating a Complex Border with Multiple Lines.

For more details on the pen object, refer to the Compound Array for the Pen object in the Microsoft .NET Framework Reference documentation.

Example

This example creates one side of a four-sided, complex border with the specified color, width, dash style, dash pattern, and compound array.
C#Copy Code
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(Color.Red, 1.5, Drawing2D.DashStyle.Dash, new float() {0.33F, 0.5F, 0.66F, 1.0F}, new float() {0.33F, 0.5F, 0.66F, 1.0F});
FarPoint.Win.ComplexBorder bord = new FarPoint.Win.ComplexBorder(side);
Visual BasicCopy Code
Dim side As New FarPoint.Win.ComplexBorderSide(Color.Red, 1.5, Drawing2D.DashStyle.Dash, New Single() {0.33F, 0.5F, 0.66F, 1.0F}, New Single() {0.33F, 0.5F, 0.66F, 1.0F})
Dim bord As New FarPoint.Win.ComplexBorder(side)

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.